body {
    .content-overlay {
        height: inherit;
        width: inherit;
        position: absolute;
        pointer-events: none;

        & .pw-error-box {
            height: fit-content;
            width: fit-content;
            padding: 5px 0px;
            visibility: hidden;
            position: absolute;
            color: white;
            text-align: center;
            font-weight: bold;
            background: red;
            border-radius: 10px;
        }

        & .pw-registration-info {
            height: fit-content;
            width: fit-content;
            display: none;
            position: absolute;
            pointer-events: auto;
            padding: 10px 10px 10px 20px;
            background: #e6dbcd;
            border-radius: 10px;
        }
    }
}